home *** CD-ROM | disk | FTP | other *** search
- /* cvmisc.h
- * miscellaneous flags and things
- ************************************************************************/
-
- #define TRUE (1)
- #define FALSE (0)
- #define MIN(a,b) (((a) < (b)) ? (a) : (b))
-
- extern int saved; /* this one gets initial data */
-
- extern int dflag ,
- demo ,
- score ,
- mxscore ,
- limit , /* how long his lamp will last on current power */
- setup , /* state of setup */
- inorth , /* # of times he said NORTH instead of N */
- detail , /* # of times we said "not allowed . . */
- numdie , /* # of times he died so far */
- maxdie , /* # of ways to resurrect him */
- holding , /* # objects he's carrying */
- dkill , /* # of dwarves killed */
- turns ,
- nxtchr ,
- abbnum , /* how often he gets long description */
- clock1 , /* time from last treasure to closing */
- clock2 , /* time from closing to closed */
- /* LOGICALS FOLLOW */
- bonus , /* gets bonus for correct finish */
- closing , /* are we closing? */
- panic , /* has he panicked */
- wzdark ,
- closed ,
- gaveup ,
- scoring ,
- mltcmd ,
- blklin ,
- samvrb ,
- finish ,
- lmwarn ;
-
-